home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 1 / Amiga Tools.iso / egs-tools / egs_dev-disk / egsdocs / gbradio.doc < prev    next >
Encoding:
Text File  |  1994-06-06  |  2.4 KB  |  107 lines

  1. TABLE OF CONTENTS
  2.  
  3. egb/gbradio.library/EGB_CreateRadioGadget
  4. egb/gbradio.library/EGB_ModifyRadioGadget
  5. egb/gbradio.library/EGB_OffRadioElems
  6. egb/gbradio.library/EGB_OnRadioElems
  7. egb/gbradio.library/EGB_CreateRadioGadgetegb/gbradio.library/EGB_CreateRadioGadget
  8.  
  9.    NAME
  10.     EGB_CreateRadioGadget -- 
  11.  
  12.    SYNOPSIS
  13.     EGB_CreateRadioGadget(con, names, height, id)
  14.                           A0   A1     D0      D1
  15.  
  16.     EB_GadBoxPtr EGB_CreateRadioGadget(EB_GadContext, EB_StrArrayPtr, WORD, LONG)
  17.  
  18.    FUNCTION
  19.     Creates a gadbox radio button gadget. These gadgets offer several
  20.     buttons, but only one can be activated at any time.
  21.  
  22.    INPUTS
  23.     con      : associated gadget context
  24.     names    : array of names for buttons
  25.     height   : number of names to be ordered vertical
  26.     id       : gadgets id
  27.  
  28.    RESULT
  29.  
  30.    SEE ALSO
  31.  
  32.  
  33. egb/gbradio.library/EGB_ModifyRadioGadgetegb/gbradio.library/EGB_ModifyRadioGadget
  34.  
  35.    NAME
  36.     EGB_ModifyRadioGadget -- 
  37.  
  38.    SYNOPSIS
  39.     EGB_ModifyRadioGadget(win, gad, sel)
  40.                           A0   A1   D0
  41.  
  42.     void EGB_ModifyRadioGadget(EI_WindowPtr, EI_GadgetPtr, LONG)
  43.  
  44.    FUNCTION
  45.     Activates a different button of a radio gadget.
  46.  
  47.    INPUTS
  48.     win     : Window, that contains the gadget; if NULL, no refresh is done
  49.     gad     : The radio gadget
  50.     data    : The number of the button to be activated
  51.  
  52.    RESULT
  53.  
  54.    SEE ALSO
  55.  
  56.  
  57. egb/gbradio.library/EGB_OffRadioElems   egb/gbradio.library/EGB_OffRadioElems
  58.  
  59.    NAME
  60.     EGB_OffRadioElems -- 
  61.  
  62.    SYNOPSIS
  63.     EGB_OffRadioElems(win, gad, elems)
  64.                       A0   A1   D0
  65.  
  66.     void EGB_OffRadioElems(EI_WindowPtr, EI_GadgetPtr, ULONG)
  67.  
  68.    FUNCTION
  69.     Makes several buttons of a radio gadget unselectable.
  70.  
  71.    INPUTS
  72.     win      : Window that contains the gadget; if NULL, no refresh is done
  73.     gad      : the radio gadget
  74.     elems    : Each bit in the 32 bit number represents one button. If the bit
  75.          is set, the associated gadget becomes unselectable.
  76.  
  77.    RESULT
  78.  
  79.    SEE ALSO
  80.  
  81.  
  82. egb/gbradio.library/EGB_OnRadioElems     egb/gbradio.library/EGB_OnRadioElems
  83.  
  84.    NAME
  85.     EGB_OnRadioElems -- 
  86.  
  87.    SYNOPSIS
  88.     EGB_OnRadioElems(win, gad, elems)
  89.                      A0   A1   D0
  90.  
  91.     void EGB_OnRadioElems(EI_WindowPtr, EI_GadgetPtr, ULONG)
  92.  
  93.    FUNCTION
  94.     Makes several buttons of a radio gadget selectable.
  95.  
  96.    INPUTS
  97.     win    : The window that contains the gadget; if NULL no refresh is done.
  98.     gad    : The radio gadget
  99.     elems  : Each bit in this 32 bit number represents one button. If a bit is
  100.        set, the associated gadget becomes selectable.
  101.  
  102.    RESULT
  103.  
  104.    SEE ALSO
  105.  
  106.  
  107.